*,
html {
    margin: 0;
    padding: 0;
}

.CONTAINER {}

.NAVBAR-CONTAINER {
    background-color: crimson;
    width: 100%;
    height: 15vh;
}

.UL-NAVBAR {
    display: flex;
    height: 100px;
    justify-content: center;
    align-items: center;
}

.LI-NAVBAR {
    list-style-type: none;
    padding: 20px;
    margin: 5px;
    color: black;
    font-size: 30px;
}

.LI-NAVBAR:hover {
    background-color: black;
    transition: .5s ease-in-out;
    transition-delay: .1s;
    border-radius: 100px;
}

.A-NAVBAR {
    color: whitesmoke;
    text-decoration: none;
    font-weight: 800;
}

.CONTENT-CONTAINER {
   background-color: #555;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 65vh;
} 

.A-CONTENT {
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 35px;
    width: 720px;
    height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.A-CONTENT-COPY1 {
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 35px;
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.A-CONTENT-COPY2 {
    background-color: white;
    color: black;
    text-decoration: none;
    font-size: 35px;
    width: 50%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 80px;
    box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-webkit-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 10px 10px 5px 0px rgba(0,0,0,0.75);
}

.IMG-CONTENT {
    width: 70%; 
    height: 70%;
}

.FOOTER-CONTAINER {
    height: 20vh;
   background-color: crimson;
   display: flex;
   justify-content: center;
   align-items: center;

}

.FOOTER-H1 {
    font-size: 100px;
    color: whitesmoke;
}